home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJEMU106.ARJ / E35.CC < prev    next >
C/C++ Source or Header  |  1991-04-25  |  231b  |  19 lines

  1. #include "emu.h"
  2. #include "rmov.h"
  3.  
  4. void emu_35()
  5. {
  6.   if (full())
  7.     return;
  8.   if (modrm > 0277)
  9.   {
  10.     emu_bad();
  11.   }
  12.   else
  13.   {
  14.     // fld m80real
  15.     top--;
  16.     r_mov(st(), (long double *)get_modrm());
  17.   }
  18. }
  19.